home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / AIncludes / Packages.a < prev    next >
Encoding:
Text File  |  1998-08-17  |  1.3 KB  |  54 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Packages.a
  3. ;
  4. ;    Contains:    Package Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.2
  8. ;
  9. ;    Copyright:    © 1985-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
  10. ;
  11. ;    Bugs?:        For bug reports, consult the following page on
  12. ;                the World Wide Web:
  13. ;
  14. ;                    http://developer.apple.com/bugreporter/
  15. ;
  16. ;
  17.     IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
  18. __PACKAGES__ SET 1
  19.  
  20.     IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
  21.     include 'MacTypes.a'
  22.     ENDIF
  23.  
  24.  
  25. listMgr                            EQU        0                    ; list manager 
  26. dskInit                            EQU        2                    ; Disk Initializaton 
  27. stdFile                            EQU        3                    ; Standard File 
  28. flPoint                            EQU        4                    ; Floating-Point Arithmetic 
  29. trFunc                            EQU        5                    ; Transcendental Functions 
  30. intUtil                            EQU        6                    ; International Utilities 
  31. bdConv                            EQU        7                    ; Binary/Decimal Conversion 
  32. editionMgr                        EQU        11                    ; Edition Manager 
  33. ;
  34. ; pascal void InitPack(short packID)
  35. ;
  36.     IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
  37.         _InitPack:    OPWORD    $A9E5
  38.     ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  39.         IMPORT_CFM_FUNCTION InitPack
  40.     ENDIF
  41.  
  42. ;
  43. ; pascal void InitAllPacks(void )
  44. ;
  45.     IF TARGET_OS_MAC ** TARGET_CPU_68K ** ¬ TARGET_RT_MAC_CFM THEN
  46.         _InitAllPacks:    OPWORD    $A9E6
  47.     ELSEIF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  48.         IMPORT_CFM_FUNCTION InitAllPacks
  49.     ENDIF
  50.  
  51.  
  52.     ENDIF ; __PACKAGES__ 
  53.  
  54.